Pull Oracle Weblogic Base Image

  1. Pull the Oracle web-logic Server image from container-registry.oracle.com Version: 15.1.1.0.

  2. Before pulling this image from the Container Registry, make sure that the Docker client has logged in successfully using the docker login command:

    # docker login container-registry.oracle.com

    Username

    Password

    Login successful.

  3. Use your Oracle SSO username and password to log in to the Oracle Registry.

  4. Pull Weblogic base image version 15.1.1.0:

    $ docker pull container-registry.oracle.com/middleware/weblogic_cpu:15.1.1.0-generic-jdk17-ol9-260109
  5. Note: The resulting images will NOT have a domain pre-configured. You must extend the image with your own Dockerfile, and create your domain using WLST.

    To customize your own WebLogic Server domain extend this image. We recommend you create your own domain by writing your own Dockerfiles, and using WebLogic Scripting Tool (WLST) to create clusters, Data Sources, JMS Servers, Security Realms, and deploy applications.

  6. In the Dockerfile extend the WebLogic Server image with the 'FROM container-registry.oracle.com/middleware/weblogic_cpu:15.1.1.0-generic-jdk17-ol9-260109' directive.